QuickTime 1.6.1 added four new componentFlags values. The canMovieImportInPlace and movieImportSubTypeIsFileExtension values were added in QuickTime 2.0:
enum {
canMovieExportAuxDataHandle = 1 << 7,
canMovieImportValidateHandles = 1 << 8,
canMovieImportValidateFile = 1 << 9,
dontRegisterWithEasyOpen = 1 << 10,
canMovieImportInPlace = 1 << 11,
movieImportSubTypeIsFileExtension = 1 << 12,
canMovieImportPartial = 1 << 13,
hasMovieImportMIMEList = 1 << 14,
canMovieExportFromProcedures = 1 << 15,
canMovieExportValidateMovie = 1L << 16,
movieExportNeedsResourceFork = 1L << 17,
canMovieImportDataReferences = 1L << 18,
movieExportMustGetSourceMediaType = 1L << 19
canMovieImportValidateDataReferences = 1L << 21
};
The following constants represent options for exporting text using a text export component. You use these constants to specify the format of the exported text. From the QuickTime user interface, you specify a text export option in the Text Export Settings dialog box. You can also specify the text export option programmatically by calling TextExportSetSettings .
enum {
kMovieExportTextOnly = 0,
kMovieExportAbsoluteTime = 1,
kMovieExportRelativeTime = 2
};
| Previous | Chapter Contents | Chapter Top | Next |